home *** CD-ROM | disk | FTP | other *** search
/ Speccy ClassiX 1998 / Speccy ClassiX 98.iso / amiga_system / the_aminet / dev / gcc / ixemulsrc.lha / ixemul-41.4 / library / ix_panic.c < prev    next >
C/C++ Source or Header  |  1995-05-17  |  3KB  |  105 lines

  1. /*
  2.  *  This file is part of ixemul.library for the Amiga.
  3.  *  Copyright (C) 1991, 1992  Markus M. Wild
  4.  *
  5.  *  This library is free software; you can redistribute it and/or
  6.  *  modify it under the terms of the GNU Library General Public
  7.  *  License as published by the Free Software Foundation; either
  8.  *  version 2 of the License, or (at your option) any later version.
  9.  *
  10.  *  This library is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13.  *  Library General Public License for more details.
  14.  *
  15.  *  You should have received a copy of the GNU Library General Public
  16.  *  License along with this library; if not, write to the Free
  17.  *  Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  *
  19.  *  ix_panic.c,v 1.1.1.1 1994/04/04 04:30:39 amiga Exp
  20.  *
  21.  *  ix_panic.c,v
  22.  * Revision 1.1.1.1  1994/04/04  04:30:39  amiga
  23.  * Initial CVS check in.
  24.  *
  25.  *  Revision 1.2  1992/08/09  20:53:58  amiga
  26.  *  add cast
  27.  *
  28.  *  Revision 1.1  1992/05/14  19:55:40  mwild
  29.  *  Initial revision
  30.  *
  31.  */
  32.  
  33. /*
  34.  * This once was req.c by Markus Wandel. It doesn't look too much like the
  35.  * original version though... Well, it was PD, I used it, so here is his
  36.  * original disclaimer:
  37.  *
  38.  * req.c - by Markus Wandel - 1990
  39.  * Placed in the public domain 7 Oct 1990
  40.  * Please have the courtesy to give credit if you use this code
  41.  * in any program.
  42.  *
  43.  */
  44. #include <exec/types.h>
  45. #include <exec/tasks.h>
  46. #include <exec/execbase.h>
  47. #include <intuition/intuition.h>
  48. #include <sys/types.h>
  49.  
  50. #define BASE_EXT_DECL
  51. #define BASE_EXT_DECL0
  52. #define BASE_PAR_DECL struct IntuitionBase *IntuitionBase,
  53. #define BASE_PAR_DECL0 struct IntuitionBase *IntuitionBase
  54. #include <inline/intuition.h>
  55.  
  56. #include <inline/exec.h>
  57.  
  58. int
  59. ix_panic (const char *msg)
  60. {
  61.   struct IntuiText line, righttext;
  62.   struct IntuitionBase *IntuitionBase;
  63.   int result = -1;
  64.   u_char old_flags;
  65.   struct Task *me = (*(struct ExecBase **)4)->ThisTask;
  66.  
  67.   /*
  68.    * This function may be called with our signals enabled. So we have to make
  69.    * sure that no signals are processed while in here.
  70.    * Since this function may be called at random points in initialization,
  71.    * it is not safe to call sigsetmask() here, so I have to resort to the
  72.    * more drastic solution of temporarily turning off TF_LAUNCH
  73.    */
  74.   old_flags = me->tc_Flags;
  75.   me->tc_Flags &= ~TF_LAUNCH;
  76.  
  77.   /* we (re)open intuition, because that way we don't depend on arp.library
  78.    * being available for us to open intuibase */
  79.  
  80.   if (IntuitionBase = (struct IntuitionBase *)OpenLibrary("intuition.library",0))
  81.     {
  82.       line.FrontPen = AUTOFRONTPEN;
  83.       line.BackPen = AUTOBACKPEN;
  84.       line.DrawMode = AUTODRAWMODE;
  85.       line.ITextFont = AUTOITEXTFONT;
  86.       line.NextText = 0;
  87.       CopyMem(&line, &righttext, sizeof(line));
  88.       righttext.LeftEdge = AUTOLEFTEDGE;
  89.       righttext.TopEdge = AUTOTOPEDGE;
  90.       line.LeftEdge = 15;
  91.       line.TopEdge = 5;
  92.  
  93.       line.IText = (UBYTE *) msg;
  94.       righttext.IText = (UBYTE *) "Abort";
  95.  
  96.       result=AutoRequest(IntuitionBase,0L,&line,0L,&righttext,0L,0L,320L,72L);
  97.  
  98.       CloseLibrary ((struct Library *) IntuitionBase);
  99.    }
  100.  
  101.   me->tc_Flags = old_flags;
  102.  
  103.   return 1;
  104. }
  105.